home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef TextListH
- #define TextListH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\QuickRep.hpp>
- #include <vcl\ExtCtrls.hpp>
- #include <vcl\System.hpp>
- #include <iostream.h>
- #include <fstream.h>
- #include <stdlib.h>
- #include <stdio.h>
- //---------------------------------------------------------------------------
- class TTextRep : public TForm
- {
- __published: // IDE-managed Components
- TQRBand *QRBand1;
- TQRLabel *QRLabel1;
- TQRBand *QRBand2;
- TQRSysData *QRSysData3;
- TQRSysData *QRSysData1;
- TQRSysData *QRSysData2;
- TQRBand *QRBand3;
- TQRLabel *QRLabel2;
- TQuickReport *Rep;
- void __fastcall RepAfterPrint(TObject *Sender);
- void __fastcall RepBeforePrint(bool &PrintReport);
- void __fastcall RepNeedData(bool &MoreData);
- private: // User declarations
- FILE *aFile;
- public: // User declarations
- virtual __fastcall TTextRep(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TTextRep *TextRep;
- //---------------------------------------------------------------------------
- #endif
-